func net/url.unescape
14 uses
net/url (current package)
url.go#L184: return unescape(s, encodeQueryComponent)
url.go#L195: return unescape(s, encodePathSegment)
url.go#L200: func unescape(s string, mode encoding) (string, error) {
url.go#L597: if userinfo, err = unescape(userinfo, encodeUserPassword); err != nil {
url.go#L603: if username, err = unescape(username, encodeUserPassword); err != nil {
url.go#L606: if password, err = unescape(password, encodeUserPassword); err != nil {
url.go#L637: host1, err := unescape(host[:zone], encodeHost)
url.go#L641: host2, err := unescape(host[zone:i], encodeZone)
url.go#L645: host3, err := unescape(host[i:], encodeHost)
url.go#L659: if host, err = unescape(host, encodeHost); err != nil {
url.go#L674: path, err := unescape(p, encodePath)
url.go#L699: p, err := unescape(u.RawPath, encodePath)
url.go#L738: frag, err := unescape(f, encodeFragment)
url.go#L762: f, err := unescape(u.RawFragment, encodeFragment)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |